From 6611e3a187e5398f686449938b7cf1ddbfcb5392 Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Thu, 7 Dec 2023 11:11:53 -0500 Subject: Store amounts as cents --- src/app/groups/[groupId]/save-recent-group.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app/groups/[groupId]/save-recent-group.tsx') diff --git a/src/app/groups/[groupId]/save-recent-group.tsx b/src/app/groups/[groupId]/save-recent-group.tsx index e55d7c8..084681a 100644 --- a/src/app/groups/[groupId]/save-recent-group.tsx +++ b/src/app/groups/[groupId]/save-recent-group.tsx @@ -12,7 +12,7 @@ type Props = { export function SaveGroupLocally({ group }: Props) { useEffect(() => { saveRecentGroup(group) - }, []) + }, [group]) return null } -- cgit v1.3